







[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Creates a new BigList that is a copy of this list.
Namespace: Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
C# |
---|
public BigList<T> Clone() |
Visual Basic (Declaration) |
---|
Public Function Clone As BigList(Of T) |
Visual C++ |
---|
public: BigList<T>^ Clone () |
Return Value
A copy of the current list
Remarks
Copying a BigList takes constant time, and little
additional memory, since the storage for the items of the two lists is shared. However, changing
either list will take additional time and memory. Portions of the list are copied when they are changed.
See Also
BigList<(Of <T>)> Class
Wintellect.PowerCollections Namespace